home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-04 | 461 b | 26 lines | [TEXT/CWIE] |
- // Header for CBalloonApp class
-
- #pragma once
-
- #include <LDocApplication.h>
-
- // Classes
-
- class LPane;
-
- class CBalloonApp : public LDocApplication {
-
- // Methods
- public:
- CBalloonApp();
- virtual ~CBalloonApp();
-
- protected:
- virtual void AdjustCursor(const EventRecord &inMacEvent); // OVERRIDE
-
- private:
- virtual LPane* GetPaneUnderMouse(LPane* inPane,
- Int32 inHorizPort,
- Int32 inVertPort); // Find the pane currently under the mouse
- };
-